home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1995 December / Computer Life December 1995.iso / astound / ast30day.3 / ASTOUND / MCITMPL / MOVIE.AMT < prev    next >
INI File  |  1995-03-15  |  2KB  |  146 lines

  1. [MCITemplates]
  2. PlayNormal=Play
  3. PlayTrans=Play During Transition
  4. PlayBack=Play Backward
  5. PlaySlow=Play Slowly
  6. PlayFast=Play Fast
  7. PlaySlowBack=Play Slowly Backward
  8. PlayFastBack=Play Fast Backward
  9. PlayMuted=Play With Sound Off
  10.  
  11. [Script PlayNormal Start]
  12.  
  13.     [Beginning]
  14.     open {DEVICE}{FILENAME} alias {ALIAS}
  15.  
  16.     [Entry]
  17.     play {ALIAS}
  18.  
  19.     [Exit]
  20.     stop {ALIAS}
  21.  
  22.     [Ending]
  23.     close {ALIAS}
  24.  
  25. [Script End]
  26.  
  27. [Script PlayTrans Start]
  28.  
  29.     [Beginning]
  30.     open {DEVICE}{FILENAME} alias {ALIAS}
  31.     play {ALIAS}
  32.  
  33.     [Entry]
  34.     pause {ALIAS}
  35.  
  36.     [Exit]
  37.     play {ALIAS}
  38.  
  39.     [Ending]
  40.     stop {ALIAS}
  41.     close {ALIAS}
  42.  
  43. [Script End]
  44.  
  45. [Script PlayBack Start]
  46.  
  47.     [Beginning]
  48.     open {DEVICE}{FILENAME} alias {ALIAS}
  49.  
  50.     [Entry]
  51.     play {ALIAS} reverse
  52.  
  53.     [Exit]
  54.     stop {ALIAS}
  55.  
  56.     [Ending]
  57.     close {ALIAS}
  58.  
  59. [Script End]
  60.  
  61. [Script PlayFast Start]
  62.  
  63.     [Beginning]
  64.     open {DEVICE}{FILENAME} alias {ALIAS}
  65.     set {ALIAS} speed 2000
  66.  
  67.     [Entry]
  68.     play {ALIAS}
  69.  
  70.     [Exit]
  71.     stop {ALIAS}
  72.  
  73.     [Ending]
  74.     close {ALIAS}
  75.  
  76. [Script End]
  77.  
  78. [Script PlayFastBack Start]
  79.  
  80.     [Beginning]
  81.     open {DEVICE}{FILENAME} alias {ALIAS}
  82.     set {ALIAS} speed 2000
  83.  
  84.     [Entry]
  85.     play {ALIAS} reverse
  86.  
  87.     [Exit]
  88.     stop {ALIAS}
  89.  
  90.     [Ending]
  91.     close {ALIAS}
  92.  
  93. [Script End]
  94.  
  95. [Script PlaySlow Start]
  96.  
  97.     [Beginning]
  98.     open {DEVICE}{FILENAME} alias {ALIAS}
  99.     set {ALIAS} speed 500
  100.  
  101.     [Entry]
  102.     play {ALIAS}
  103.  
  104.     [Exit]
  105.     stop {ALIAS}
  106.  
  107.     [Ending]
  108.     close {ALIAS}
  109.  
  110. [Script End]
  111.  
  112. [Script PlaySlowBack Start]
  113.  
  114.     [Beginning]
  115.     open {DEVICE}{FILENAME} alias {ALIAS}
  116.     set {ALIAS} speed 500
  117.  
  118.     [Entry]
  119.     play {ALIAS} reverse
  120.  
  121.     [Exit]
  122.     stop {ALIAS}
  123.  
  124.     [Ending]
  125.     close {ALIAS}
  126.  
  127. [Script End]
  128.  
  129. [Script PlayMuted Start]
  130.  
  131.     [Beginning]
  132.     open {DEVICE}{FILENAME} alias {ALIAS}
  133.     set {ALIAS} audio all off
  134.  
  135.     [Entry]
  136.     play {ALIAS}
  137.  
  138.     [Exit]
  139.     stop {ALIAS}
  140.  
  141.     [Ending]
  142.     close {ALIAS}
  143.  
  144. [Script End]
  145.  
  146.